.contactContainer {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .cbanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* opacity: 0.5; */
     /* Semi-transparent for better readability */
    /* z-index: -1;  */
    /* Ensure it stays behind other elements */
  }
  
  #contactDiv {
    width: 50%; /* Adjust the width as needed */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1; /* Keep it above the background */
    background-color: #000;
    border: solid 1px #3a92bc;
    
  }
  
  #contactDiv h3 {
    font-family: "Montserrat", sans-serif;
    
    margin-bottom: 20px;
    color: #89bce8;
 
    letter-spacing: 6px;
    text-align: center;
    text-transform: uppercase;
  }
  
  #contactForm input,
  #contactForm select,
  #contactForm textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    background: none;
    border: none;
    border-bottom: solid 2px #474544;
    color: #aaaaaa;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Saira Condensed', sans-serif;
    width: 100%;
  }
  
  #contactForm input[type="submit"] {
    background-color: #25538e;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  #contactForm input[type="submit"]:hover {
    background-color: #255388;
  }
  
  #contactForm input::placeholder,
  #contactForm textarea::placeholder {
    font-style: italic;
    color: #999;
  }

  /* Media Queries */

/* Large Devices (max-width: 1200px) */
@media (max-width: 1200px) {
  #contactDiv {
    width: 60%; /* Slightly reduce width for large tablets */
  }
}

/* Medium Devices (max-width: 900px) */
@media (max-width: 900px) {
  #contactDiv {
    width: 70%; /* Adjust size for medium devices */
    padding: 20px;
  }

  #contactDiv h3 {
    font-size: 1.5rem;
    letter-spacing: 4px;
  }

  #contactForm input,
  #contactForm select,
  #contactForm textarea {
    font-size: 18px;
  }
}
/* Small Devices (max-width: 600px) */
@media (max-width: 600px) {
  .contactContainer {
    flex-direction: column;
    height: 100vh; /* Allow content to define height */
    padding: 20px;
  }

  #contactDiv {
    width: 95%; /* Adjust to full width with padding */
    padding: 15px;
  }

  #contactDiv h3 {
    font-size: 0.8rem;
    letter-spacing: 3px;
  }

  #contactForm input,
  #contactForm select,
  #contactForm textarea {
    font-size: 16px;
  }

  #contactForm input[type="submit"] {
    font-size: 16px;
    padding: 10px;
  }
}

  